home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Online / Apache / include / php / ext / standard / file.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-12-07  |  2.5 KB  |  76 lines

  1. /*
  2.    +----------------------------------------------------------------------+
  3.    | PHP version 4.0                                                      |
  4.    +----------------------------------------------------------------------+
  5.    | Copyright (c) 1997, 1998, 1999, 2000 The PHP Group                   |
  6.    +----------------------------------------------------------------------+
  7.    | This source file is subject to version 2.02 of the PHP license,      |
  8.    | that is bundled with this package in the file LICENSE, and is        |
  9.    | available at through the world-wide-web at                           |
  10.    | http://www.php.net/license/2_02.txt.                                 |
  11.    | If you did not receive a copy of the PHP license and are unable to   |
  12.    | obtain it through the world-wide-web, please send a note to          |
  13.    | license@php.net so we can mail you a copy immediately.               |
  14.    +----------------------------------------------------------------------+
  15.    | Authors: Rasmus Lerdorf <rasmus@lerdorf.on.ca>                       |
  16.    +----------------------------------------------------------------------+
  17. */
  18.  
  19. /* $Id: file.h,v 1.29.2.1 2000/12/07 19:15:02 sas Exp $ */
  20.  
  21. /* Synced with php 3.0 revision 1.30 1999-06-16 [ssb] */
  22.  
  23. #ifndef FILE_H
  24. #define FILE_H
  25.  
  26. extern PHP_MINIT_FUNCTION(file);
  27.  
  28. PHP_FUNCTION(tempnam);
  29. PHP_NAMED_FUNCTION(php_if_tmpfile);
  30. PHP_NAMED_FUNCTION(php_if_fopen);
  31. PHP_FUNCTION(fclose);
  32. PHP_FUNCTION(popen);
  33. PHP_FUNCTION(pclose);
  34. PHP_FUNCTION(feof);
  35. PHP_FUNCTION(fread);
  36. PHP_FUNCTION(fgetc);
  37. PHP_FUNCTION(fgets);
  38. PHP_FUNCTION(fscanf);
  39. PHP_FUNCTION(fgetss);
  40. PHP_FUNCTION(fgetcsv);
  41. PHP_FUNCTION(fwrite);
  42. PHP_FUNCTION(fflush);
  43. PHP_FUNCTION(rewind);
  44. PHP_FUNCTION(ftell);
  45. PHP_FUNCTION(fseek);
  46. PHP_FUNCTION(mkdir);
  47. PHP_FUNCTION(rmdir);
  48. PHP_FUNCTION(fpassthru);
  49. PHP_FUNCTION(readfile);
  50. PHP_FUNCTION(umask);
  51. PHP_FUNCTION(rename);
  52. PHP_FUNCTION(unlink);
  53. PHP_FUNCTION(copy);
  54. PHP_FUNCTION(file);
  55. PHP_FUNCTION(set_socket_blocking); /* deprecated */
  56. PHP_FUNCTION(socket_set_blocking);
  57. PHP_FUNCTION(socket_set_timeout);
  58. PHP_FUNCTION(socket_get_status);
  59. PHP_FUNCTION(set_file_buffer);
  60. PHP_FUNCTION(get_meta_tags);
  61. PHP_FUNCTION(flock);
  62. PHP_FUNCTION(fd_set);
  63. PHP_FUNCTION(fd_isset);
  64. PHP_FUNCTION(select);
  65. PHP_FUNCTION(realpath);
  66. PHP_NAMED_FUNCTION(php_if_ftruncate);
  67. PHP_NAMED_FUNCTION(php_if_fstat);
  68.  
  69. PHPAPI int php_set_sock_blocking(int socketd, int block);
  70. PHPAPI int php_file_le_fopen(void);
  71. PHPAPI int php_file_le_popen(void);
  72. PHPAPI int php_file_le_socket(void);
  73. PHPAPI int php_copy_file(char *src, char *dest);
  74.  
  75. #endif /* FILE_H */
  76.